home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / crypt / lha211 / typedef.h < prev    next >
C/C++ Source or Header  |  1990-09-30  |  395b  |  11 lines

  1. /***********************************************************
  2.     typedef.h
  3. ***********************************************************/
  4. #ifndef _TYPEDEF_H_
  5. #define _TYPEDEF_H_
  6. typedef unsigned char  uchar;   /*  8 bits */
  7. typedef unsigned int   uint;    /* 16 - 32 bits or more */
  8. typedef unsigned short ushort;  /* 16 bits */
  9. typedef unsigned long  ulong;   /* 32 bits or more */
  10. #endif
  11.